cssjshtml vue.js 时间刷新

葫芦的运维日志

下一篇 搜索 上一篇

浏览量 4472

2018/10/11 23:59


显示当前时间:

源码:


<!--
# @Time    : 2018/10/10 上午12:39
# @Author  : BrownWang
# @Email   : 277215243@qq.com
# @File    : vuedemo.html
# @Software: PyCharm -->
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
<div id="app">
{{date}}
</div>
<script src="/static/js/vue.min.js"></script>
<script>
    var app=new Vue({
        el:'#app',
        data:{
           date:new Date()
        },
        mounted:function(){
           var _this=this;
           this.timer=setInterval(function(){
           _this.date=new Date();
           },1000)},
        beforDestroy:function(){
          if(this.timer){
           clearInterval(this.timer);
        }
       }
    })
</script>
</body>
</html>

 

葫芦的运维日志

打赏

上一篇 搜索 下一篇
© 冰糖葫芦甜(bthlt.com) 2021 王梓打赏联系方式 陕ICP备17005322号-1